100 |
How do I specify the indentation of the child items relative to their parents
|
99 |
How do I get the a property based on its identifier
with AxPropertiesList1 do begin BeginUpdate(); Add('Root','',EXPROPERTIESLISTLib.EditTypeEnum.Label,Nil,Nil,Nil); Add('Child 1',TObject(1),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,'Root',Nil).ID := 1234; Add('Child 2',TObject(2),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,'Root',Nil); set_ExpandItem('Root',True); Add('Property',get_Property(TObject(1234)).Name,EXPROPERTIESLISTLib.EditTypeEnum.Label,Nil,Nil,Nil); EndUpdate(); end |
98 |
How do I get the a property based on its index
with AxPropertiesList1 do begin BeginUpdate(); Add('Root','',EXPROPERTIESLISTLib.EditTypeEnum.Label,Nil,Nil,Nil); Add('Child 1',TObject(1),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,'Root',Nil); Add('Child 2',TObject(2),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,'Root',Nil); set_ExpandItem('Root',True); Add('Item',get_Item(TObject(1)).Name,EXPROPERTIESLISTLib.EditTypeEnum.Label,Nil,Nil,Nil); EndUpdate(); end |
97 |
How do I get the number or count of the properties being listed
with AxPropertiesList1 do begin BeginUpdate(); Add('Root','',EXPROPERTIESLISTLib.EditTypeEnum.Label,Nil,Nil,Nil); Add('Child 1',TObject(1),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,'Root',Nil); Add('Child 2',TObject(2),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,'Root',Nil); set_ExpandItem('Root',True); Add('Count',TObject(Count),EXPROPERTIESLISTLib.EditTypeEnum.Label,Nil,Nil,Nil); EndUpdate(); end |
96 |
How do I change the name or the caption for a column
with AxPropertiesList1 do begin HeaderVisible := True; set_ColumnCaption(TObject(0),'Properties'); Select(AxPropertiesList1); end |
95 |
How do I expand a property
with AxPropertiesList1 do begin BeginUpdate(); Add('Root','',EXPROPERTIESLISTLib.EditTypeEnum.Label,Nil,Nil,Nil); Add('Child 1',TObject(1),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,'Root',Nil); Add('Child 2',TObject(2),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,'Root',Nil); set_ExpandItem('Root',True); EndUpdate(); end |
94 |
How do I change the width for a column
|
93 |
How do I clear or remove all properties
|
92 |
How do I remove a property
|
91 |
How do I add a property
|
90 |
How do I change the visual aspect description's spliter, using EBN
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHeaderFilterBarButton,$1000000); Select(AxPropertiesList1); end |
89 |
How do I change the visual aspect for thumb parts in the scroll bars, using EBN
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn'); VisualAppearance.Add(3,'c:\exontrol\images\hot.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumb,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumbP,$2000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumbH,$3000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumb,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumbP,$2000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumbH,$3000000); Select(AxPropertiesList1); end |
88 |
I've seen that you can change the visual appearance for the scroll bar. How can I do that
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn'); VisualAppearance.Add(3,'c:\exontrol\images\hot.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtn,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtnP,$2000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtnH,$3000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exHSBack,$f0f0f0); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exVSBack,$f0f0f0); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exScrollSizeGrip,$f0f0f0); HeaderVisible := True; ColumnAutoResize := False; Select(AxPropertiesList1); end |
87 |
Can I change the forecolor for the tooltip
with AxPropertiesList1 do begin ToolTipDelay := 1; ToolTipWidth := 364; set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipForeColor,$ff); AllowTooltip := True; Select(AxPropertiesList1); end |
86 |
Can I change the background color for the tooltip
with AxPropertiesList1 do begin ToolTipDelay := 1; ToolTipWidth := 364; set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipBackColor,$ff); Select(AxPropertiesList1); AllowTooltip := True; end |
85 |
Can I change the default border of the tooltip, using your EBN files
with AxPropertiesList1 do begin ToolTipDelay := 1; ToolTipWidth := 364; VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipAppearance,$1000000); Select(AxPropertiesList1); AllowTooltip := True; end |
84 |
Is there any option to highligth the column from the cursor - point
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exCursorHoverColumn,$1000000); HeaderVisible := True; end |
83 |
How can change the visual appearance for the spin control, using your EBN files
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinUpButtonUp,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinUpButtonDown,$2000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinDownButtonUp,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinDownButtonDown,$2000000); AllowSpin := True; Add('Spin',TObject(50),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); Refresh(); end |
82 |
How can change the visual appearance for the slider or track bar, using your EBN files
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSliderThumb,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exSliderRange,$d2d2d2); Add('Slider',TObject(50),EXPROPERTIESLISTLib.EditTypeEnum.EditSlider,Nil,Nil,Nil); Refresh(); end |
81 |
How do I change the visual aspect of the drop down calendar window, that shows up if I click the drop down filter button, using EBN
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateHeader,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateTodayUp,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateTodayDown,$2000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateScrollThumb,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateScrollRange,$e6e6e6); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateSeparatorBar,$e6e6e6); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDateSelect,$1000000); Add('Date','1/1/2001',EXPROPERTIESLISTLib.EditTypeEnum.EditDate,Nil,Nil,Nil); Refresh(); end |
80 |
How can change the visual appearance for the button that are visible inside the editors, using your EBN files
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exButtonDown,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exButtonUp,$2000000); Select(AxPropertiesList1); end |
79 |
How can change the visual appearance for the button that shows the drop down editors, using your EBN files
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn'); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDropDownButtonUp,$1000000); set_Background(EXPROPERTIESLISTLib.BackgroundPartEnum.exDropDownButtonDown,$2000000); Select(AxPropertiesList1); end |
78 |
Can I change the order of the buttons in the scroll bar
with AxPropertiesList1 do begin set_ScrollOrderParts(EXPROPERTIESLISTLib.ScrollBarEnum.exHScroll,'t,l,r'); set_ScrollOrderParts(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,'t,l,r'); Select(AxPropertiesList1); end |
77 |
The thumb size seems to be very small. Can I make it bigger
|
76 |
How do I enlarge or change the size of the control's scrollbars
with AxPropertiesList1 do begin ScrollHeight := 18; ScrollWidth := 18; ScrollButtonWidth := 18; ScrollButtonHeight := 18; Select(AxPropertiesList1); end |
75 |
How can I display my text on the scroll bar, using a different font
|
74 |
How can I display my text on the scroll bar
|
73 |
How do I assign a tooltip to a scrollbar
|
72 |
How do I assign an icon to the button in the scrollbar
with AxPropertiesList1 do begin Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA='); set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,True); set_ScrollPartCaption(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,'<img>1</img>'); ScrollHeight := 18; ScrollButtonWidth := 18; Select(AxPropertiesList1); end |
71 |
I need to add a button in the scroll bar. Is this possible
with AxPropertiesList1 do begin set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,True); set_ScrollPartCaption(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,'1'); Select(AxPropertiesList1); end |
70 |
Can I display an additional buttons in the scroll bar
with AxPropertiesList1 do begin set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,True); set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB2Part,True); set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exRightB6Part,True); set_ScrollPartVisible(EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,EXPROPERTIESLISTLib.ScrollPartEnum.exRightB5Part,True); Select(AxPropertiesList1); end |
69 |
Can I change the font for the tooltip
with AxPropertiesList1 do begin ToolTipDelay := 1; with ToolTipFont do begin Name := 'Tahoma'; Size := 14; end; AllowTooltip := True; Select(AxPropertiesList1); end |
68 |
How do I call your x-script language
with AxPropertiesList1 do begin with (ExecuteTemplate('Add(`Bold`,1,1)') as EXPROPERTIESLISTLib.Property) do begin Bold := True; end; end |
67 |
How do I disable sorting the columns when clicking the control's header
with AxPropertiesList1 do begin SortOnClick := EXPROPERTIESLISTLib.SortOnClickEnum.exNoSort; HeaderVisible := True; Select(AxPropertiesList1); end |
66 |
Can I use your EBN files to change the visual appearance for +/- expand - collapse buttons
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn'); HasButtons := EXPROPERTIESLISTLib.ExpandButtonEnum.exCustom; set_HasButtonsCustom(False,16777216); set_HasButtonsCustom(True,33554432); Select(AxPropertiesList1); end |
65 |
Can I use my own icons for the +/- ( expand/collapse ) buttons
with AxPropertiesList1 do begin Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA='); HasButtons := EXPROPERTIESLISTLib.ExpandButtonEnum.exCustom; set_HasButtonsCustom(False,1); set_HasButtonsCustom(True,2); Select(AxPropertiesList1); end |
64 |
How do I change visual appearance of the +/- ( expand/collapse ) buttons
|
63 |
How do I browse or select for a com or net object
|
62 |
How do I expand all properties
|
61 |
How do I enable resizing the columns at runtime
with AxPropertiesList1 do begin ColumnsAllowSizing := True; Select(AxPropertiesList1); end |
60 |
How do I call your x-script language
|
59 |
How can I enable or disable the control
with AxPropertiesList1 do begin Enabled := False; Select(AxPropertiesList1); end |
58 |
I've seen that the width of the tooltip is variable. Can I make it larger
with AxPropertiesList1 do begin ToolTipWidth := 328; AllowTooltip := True; Select(AxPropertiesList1); end |
57 |
How do I disable showing the tooltip for all control
with AxPropertiesList1 do begin ToolTipDelay := 0; AllowTooltip := True; Select(AxPropertiesList1); end |
56 |
How do I let the tooltip being displayed longer
with AxPropertiesList1 do begin ToolTipPopDelay := 10000; AllowTooltip := True; Select(AxPropertiesList1); end |
55 |
How do I show the tooltip quicker
with AxPropertiesList1 do begin ToolTipDelay := 1; AllowTooltip := True; Select(AxPropertiesList1); end |
54 |
How do I get the handle of the control's window
|
53 |
How do I show alternate rows in different background color
|
52 |
How do enable or disable tooltips
with AxPropertiesList1 do begin AllowTooltip := True; Select(AxPropertiesList1); end |
51 |
How do change the foreground color for the control's header bar, using EBN
with AxPropertiesList1 do begin HeaderVisible := True; ForeColorHeader := Color.FromArgb(255,0,0); end |
50 |
How do change the visual appearance for the control's header bar, using EBN
with AxPropertiesList1 do begin HeaderVisible := True; VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); (GetOcx() as EXPROPERTIESLISTLib.PropertiesList).BackColorHeader := $1000000; end |
49 |
How do I change the foreground color for the description part in the bottom side of the control
|
48 |
How do I change the visual appearance for the description part in the bottom side of the control, using your EBN files
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); (GetOcx() as EXPROPERTIESLISTLib.PropertiesList).BackColorDescription := $1000000; end |
47 |
How do I change the background color for the description part in the bottom side of the control
|
46 |
Is there any option to specify the height of the items, before adding them
|
45 |
How do I show or hide the connection between categories
with AxPropertiesList1 do begin MarkCategories := True; LinkCategories := False; ShowCategories := True; ShowPropertyPages := False; Select(AxPropertiesList1); end |
44 |
How do I show or hide the categories
with AxPropertiesList1 do begin MarkCategories := True; MarkLineColor := Color.FromArgb(255,0,0); ShowCategories := True; ShowPropertyPages := False; Select(AxPropertiesList1); end |
43 |
How do I change the foreground color for categories
with AxPropertiesList1 do begin ForeColorCategories := Color.FromArgb(255,0,0); ShowCategories := True; ShowPropertyPages := False; Select(AxPropertiesList1); end |
42 |
How do I change the background color for categories
with AxPropertiesList1 do begin BackColorCategories := Color.FromArgb(255,0,0); ShowCategories := True; ShowPropertyPages := False; Select(AxPropertiesList1); end |
41 |
How do I sort the control
with AxPropertiesList1 do begin Select(AxPropertiesList1); Sort(TObject(False),Nil); end |
40 |
Is there any option to change the color for the grid lines
|
39 |
How do I specify the default category
with AxPropertiesList1 do begin DefaultCategory := 'Font'; ShowCategories := True; ShowPropertyPages := False; Select(AxPropertiesList1); end |
38 |
How do I show or hide the categories
with AxPropertiesList1 do begin MarkCategories := False; ShowCategories := True; ShowPropertyPages := False; Select(AxPropertiesList1); end |
37 |
How do I get a property based on its name
with AxPropertiesList1 do begin Add('First Name','Mihai',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil).ID := 100; Add('Last Name','Filimon',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); SelectedProperty := (get_Property(TObject(100)) as EXPROPERTIESLISTLib.Property); Refresh(); end |
36 |
How do I get a property based on its name
with AxPropertiesList1 do begin Add('First Name','Mihai',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); Add('Last Name','Filimon',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); SelectedProperty := (get_Property('Last Name') as EXPROPERTIESLISTLib.Property); Refresh(); end |
35 |
How do I maintain performance while making several changes
with AxPropertiesList1 do begin BeginUpdate(); Add('First',TObject(1),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); Add('Second',TObject(1),EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); EndUpdate(); end |
34 |
How can I get a list of interfaces that an object implements
|
33 |
How can I display something else when including the elements of a collection
with AxPropertiesList1 do begin ShowObjects := True; ShowItemsCollection := True; NameItemsCollection := 'Name;Caption;Item;Index'; Select(AxPropertiesList1); end |
32 |
How can I include the elements of a collection
with AxPropertiesList1 do begin ShowObjects := True; ShowItemsCollection := True; Select(AxPropertiesList1); end |
31 |
How can I use a spin control to edit numeric values
with AxPropertiesList1 do begin AllowSpin := True; Select(AxPropertiesList1); end |
30 |
How can I change the control's font
|
29 |
How do I show or hide the variables of an object like Font
with AxPropertiesList1 do begin ShowVariables := True; Select(Font); end |
28 |
How do I show or hide the categories
with AxPropertiesList1 do begin ShowCategories := True; ShowPropertyPages := False; Select(AxPropertiesList1); end |
27 |
How do I refresh the control
|
26 |
How can still display the selected items when the control loses the focus
with AxPropertiesList1 do begin HideSelection := False; Add('First Name','Mihai',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); Add('Last Name','Filimon',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); SelectedProperty := (get_Property('Last Name') as EXPROPERTIESLISTLib.Property); Refresh(); end |
25 |
How do I change the visual appearance effect for the selected item, using EBN
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); (GetOcx() as EXPROPERTIESLISTLib.PropertiesList).SelBackColor := $1000000; SelForeColor := Color.FromArgb(0,0,0); Add('First Name','Mihai',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); Add('Last Name','Filimon',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); SelectedProperty := (get_Property('Last Name') as EXPROPERTIESLISTLib.Property); Refresh(); end |
24 |
How do I change the colors for the selected item
|
23 |
How do I show or hide the non browseable members
with AxPropertiesList1 do begin ShowNonBrowsable := True; Select(AxPropertiesList1); end |
22 |
How can I hide or show the object's property pages
with AxPropertiesList1 do begin ShowPropertyPages := False; Select(AxPropertiesList1); end |
21 |
How do I filter properties when loading
with AxPropertiesList1 do begin FireIncludeProperty := True; end |
20 |
How do I get or set the selected property
with AxPropertiesList1 do begin Add('First Name','Mihai',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); Add('Last Name','Filimon',EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nil,Nil,Nil); SelectedProperty := (get_Property('Last Name') as EXPROPERTIESLISTLib.Property); Refresh(); end |
19 |
How do I remove "Invalid property value." message
|
18 |
How do I change the "Invalid property value." message
|
17 |
How do I edit a property as soon as the user selects it
with AxPropertiesList1 do begin EditOnSelect := True; Select(AxPropertiesList1); end |
16 |
How do I make the control read only
with AxPropertiesList1 do begin ReadOnly := True; Select(AxPropertiesList1); end |
15 |
How do I show or hide the read only members
with AxPropertiesList1 do begin ShowReadOnly := False; Select(AxPropertiesList1); end |
14 |
How do I show or hide the grid lines
|
13 |
How do I hide the hierarchy lines
with AxPropertiesList1 do begin HasLines := False; Select(AxPropertiesList1); end |
12 |
How can I add the horizontal scroll bar
with AxPropertiesList1 do begin ColumnAutoResize := False; HeaderVisible := True; Select(AxPropertiesList1); end |
11 |
How do I show or hide the control's header bar
with AxPropertiesList1 do begin HeaderVisible := True; Select(AxPropertiesList1); end |
10 |
How do I show or hide the objects members
with AxPropertiesList1 do begin ShowObjects := False; Select(AxPropertiesList1); end |
9 |
How do I show or hide the restricted members
with AxPropertiesList1 do begin ShowRestricted := False; Select(AxPropertiesList1); end |
8 |
How do I show or hide the hidden members
with AxPropertiesList1 do begin ShowHidden := False; Select(AxPropertiesList1); end |
7 |
How do I browse or select an object
|
6 |
How do I change the control's foreground color
|
5 |
How do I change the control's background color
|
4 |
How do change the visual appearance for the control's border, using EBN
with AxPropertiesList1 do begin VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn'); BorderStyle := EXPROPERTIESLISTLib.BorderStyleEnum($1000000); BackColor := Color.FromArgb(255,255,255); end |
3 |
How do I remove the control's border
|
2 |
How do I change the height of the description part in the bottom side of the control
|
1 |
How do I hide or show the description part in the bottom side of the control
with AxPropertiesList1 do begin DescriptionVisible := False; end |